/* ============================
   HERO SECTION
============================ */

.hero-section {
    padding: 130px 20px 130px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, #fff1f2 0%, transparent 40%),
        radial-gradient(circle at bottom right, #fff7ed 0%, transparent 40%),
        #f9fbff;
    overflow: hidden;
}

/* Background glow */
.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(
        circle,
        rgba(255, 94, 138, 0.18),
        transparent 70%
    );
    border-radius: 50%;
    z-index: 0;
}

.hero-section::before {
    top: -100px;
    left: -100px;
}

.hero-section::after {
    bottom: -100px;
    right: -100px;
}

/* Text */
.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #232a36;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease;
}

.hero-section .highlight {
    background: linear-gradient(90deg, #ff5e8a, #ff9966);
    -webkit-background-clip: text;
    background-clip: -webkit-background-clip;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    animation: fadeUp 1.2s ease;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 70px 15px 60px;
    }

    .hero-section h1 {
        font-size: 2.1rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}

/* =========================
   STATS SECTION
========================= */

.stats-section {
    background: #ffffff;
    padding: 70px 20px;
}

.stats-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

/* Card */
.stat-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(255, 94, 98, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff5e8a, #ff9966);
    opacity: 0;
    transition: 0.3s;
    z-index: 0;
}

.stat-box:hover::before {
    opacity: 0.08;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 94, 98, 0.2);
}

/* Icon */
.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff5e8a, #ff9966);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(255, 94, 98, 0.4);
}

/* Numbers */
.stat-number {
    font-size: 2.3rem;
    font-weight: 800;
    color: #232a36;
    margin-bottom: 6px;
}

/* Label */
.stat-label {
    font-size: 1.05rem;
    color: #4a5568;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================
   OUR PROGRAMS SECTION
========================= */

.programs-section {
    padding: 80px 20px;
    text-align: center;
    background:
        radial-gradient(circle at top left, #fff1f2 0%, transparent 40%),
        radial-gradient(circle at bottom right, #fff7ed 0%, transparent 40%),
        #f9fbff;
    overflow: hidden;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #232a36;
    margin-bottom: 10px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #4a5568;
    font-size: 1.2rem;
}

.program-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(255, 94, 98, 0.12);
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(255, 94, 98, 0.25);
}

/* Icon */
.program-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #ff5e8a, #ff9966);
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* Text */
.program-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #232a36;
}

.program-card p {
    color: #4a5568;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.program-card ul {
    padding-left: 18px;
    margin: 0;
}

.program-card ul li {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #444;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .section-subtitle {
        font-size: 1.05rem;
    }
}
/* ==============================
   PARTNERS SECTION
============================== */

.partners-section {
    padding: 40px 20px 10px;
    background:
        radial-gradient(circle at top left, #fff1f2 0%, transparent 40%),
        radial-gradient(circle at bottom right, #fff7ed 0%, transparent 40%),
        #f9fbff;
    overflow: hidden;
}
.intro-text {
    max-width: 1300px !important;
}
.partners-section h2 {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #232a36;
}

.partners-section > p {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

/* GROUP BLOCK */
.partners-cards-group {
    background: #fafafa;
    border-radius: 18px;
    padding: 40px 30px !important;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.partners-cards-group h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.partners-cards-group h3 .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff5e8a, #ff9966);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* CARDS GRID */
.partners-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

/* INDIVIDUAL CARD */
.partner-card {
    background: #fff;
    padding: 18px 20px;
    border-radius: 14px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}
.partner-card1 {
    padding: 14px 20px 2px !important;
    font-size: 17px;
}
.partners-cards-group h4 {
    margin: 20px 0px 30px 10px;
}
.partner-card strong {
    display: block;
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 4px;
}

.partner-card span {
    font-size: 0.95rem;
    color: #666;
}

/* Hover effect */
.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(255, 94, 98, 0.18);
    border-color: transparent;
}

/* Bottom note */
.partners-section > div:last-child {
    font-size: 1.1rem;
    color: #555;
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .partners-section h2 {
        font-size: 2rem;
    }

    .partners-cards-group {
        padding: 30px 20px;
    }

    .partners-cards {
        grid-template-columns: 1fr;
    }
}
